home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / pc / XINE-1.ZIP / INJECTOR.ZIP / DOC / DOIPPKT < prev    next >
Encoding:
Text File  |  1996-10-25  |  759 b   |  27 lines

  1. doippkt is a utility that helps to build a datagram which can be send over
  2. a TCP/IP network. It calculates checksum and packet lengths. The syntax
  3. is:
  4.  
  5. doippkt [infile] [outfile]
  6.  
  7. Every line is interpreted upon the first char in it. The allowd charter
  8. are:
  9.  
  10. char          meanning        Example
  11. #           a comment        # this is an example
  12. c           1 byte decimal        c34
  13. u        2 byte decimal        d8231
  14. b        1 byte hex        b7A
  15. w        2 byte word        wAAD0
  16. s        a string        sFoo Bar
  17. d        udp separator
  18. i        icmp separator
  19. t         tcp separator
  20. e        ethernet separator
  21.  
  22. e is mandatory and divides ethernet header and TCP/IP info. d,i or t
  23. divide IP header and respective header. As i said the fields involving
  24. checksums and length are automatically calculated and should be left
  25. blank.
  26.  
  27.